home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / listings / v_12_06 / heintze / boolean.h < prev   
C/C++ Source or Header  |  1994-03-23  |  117b  |  7 lines

  1. #ifndef __BOOLEAN_H
  2. #define __BOOLEAN_H
  3. typedef int Boolean;
  4. const Boolean TRUE = 1;
  5. const Boolean FALSE = 0;
  6. #endif
  7.